home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / math / maca_101.zip / INTRO.DOC < prev    next >
Text File  |  1996-01-30  |  6KB  |  172 lines

  1.  
  2.  
  3.  
  4.                                     MASSCALC
  5.                                   VERSION 1.01
  6.                                   INTRODUCTION
  7.  
  8.                                 by Ralph W. Reid
  9.  
  10.                            Released: January 30, 1996
  11.  
  12.  
  13.      Try these programs at your own risk!  Considerable effort has been put
  14.      into writing these programs to keep them from wildly rampaging through
  15.      your computer, deleting and damaging everything reachable, but
  16.      sometimes things go wrong anyway.  The original author (Ralph W. Reid)
  17.      may not be held responsible for any damages or losses, including but
  18.      not limited to lost or damaged files, hardware failures, any type of
  19.      physical disability or impairment which might be associated with
  20.      computer operation, marital or other personal problems, or any other
  21.      problems or situations which might be the result of operating this or
  22.      any other computer software.  RUN THESE COMPUTER PROGRAMS AT YOUR OWN
  23.      RISK!
  24.  
  25.      ACKNOWLEDGEMENTS:  This software was written in the C programming
  26.      language, and was compiled with the Turbo C compiler from Borland
  27.      International.  Turbo C is a registered trademark of Borland
  28.      International.
  29.      Some of the functions included in this calculator are based on some of
  30.      the algorithms discussed in, "Applied Numerical Analysis," by Kurtis
  31.      Gerald, 1989.
  32.  
  33.      OPERATING ENVIRONMENT:  MASSCALC has been written and compiled to run
  34.      with the MS-DOS or PC-DOS operating systems, version 3.00 or later. 
  35.      The shareware and student distributions operate completely in main
  36.      memory, while the full distribution creates temporary files (memory
  37.      overflow files) to hold some data which will not fit into a single
  38.      segment of main memory.  The shareware distribution of MASSCALC was
  39.      compiled to run in any computer with the proper operating system, and a
  40.      8088, 8086, 80286, 80386, 80486, Pentium, Pentium Professional, or
  41.      compatible processor.  The student distribution will run on any of the
  42.      systems the shareware distribution runs on, with the exception that a
  43.      math co-processor (80X87) must be installed.  The full distribution
  44.      requires that a 80286, 80386, 80486, Pentium, Pentium Professional, or
  45.      compatible processor be installed, along with any applicable math co-
  46.      processors (80X87).  The full distribution also takes advantage of hard
  47.      drive space for large arrays by storing the array numerical data in
  48.      temporary files, which are placed in the directory defined by the
  49.      operating system environment variable MASSCALCTEMP, TMP, or TEMP, or in
  50.      the current default directory.
  51.  
  52.      INSTALLATION:
  53.      1.  Unpack MASSCALC into its own directory to keep the demo files
  54.      (*.DEM) from overwriting any files from unrelated packages.
  55.  
  56.  
  57.      MASSCALC     VERSION 1.01                                            1
  58.  
  59.  
  60.  
  61.      2.  Copy the MASSCALC.EXE file to a directory which is included in the
  62.      operating system search path (see your operating system manual for the
  63.      PATH command), or include the directory you just unpacked MASSCALC into
  64.      in your system path.
  65.  
  66.      3.  If you are installing the full distribution of MASSCALC (not the
  67.      shareware or student distribution), you can specify which directory the
  68.      temporary files should be written to.  MASSCALC searches three
  69.      operating system environment variables for the path to use for its
  70.      temporary files in the following order: MASSCALCTEMP, TMP, TEMP.  If
  71.      none of these environment variables have been defined when MASSCALC is
  72.      started, the current directory is used for the temporary files.  To set
  73.      a value for an operating system environment variable, run the SET
  74.      command from the operating system prompt as follows:
  75.  
  76.      SET MASSCALCTEMP=C:\TMP
  77.  
  78.      Replace "C:\TMP" as needed with the proper directory path.  The
  79.      directory path may be entered with or without a terminating back-slash
  80.      (\) as desired; MASSCALC will work with either format.  For example,
  81.      the following operating system commands will cause MASSCALC to use the
  82.      same directories for its temporary files:
  83.  
  84.      SET MASSCALCTEMP=C:\TMP
  85.      SET MASSCALCTEMP=C:\TMP\
  86.  
  87.      An appropriate SET command should be added to the AUTOEXEC.BAT file (or
  88.      another batch file involved in the boot-up process) to be certain a
  89.      temporary directory is always defined for the full distribution of
  90.      MASSCALC.  See your operating system manual for more information
  91.      concerning setting environment variables.
  92.  
  93.      FOR MORE INFORMATION:  Read the MASSCALC.doc file which should have
  94.      been included with this distribution.  The author of MASSCALC and other
  95.      software can be contacted in the following ways:
  96.  
  97.      EMAIL: rreid@athenon.com
  98.      WWW: http://www2.athenon.com/~rreid
  99.      SNAILMAIL:
  100.           Ralph W. Reid
  101.           125 Parmac  #32
  102.           Chico, CA  95926
  103.           USA
  104.  
  105.      DISTRIBUTING MASSCALC:  MASSCALC is copyright 1996, and may not be
  106.      distributed by anyone other than the author Ralph W. Reid), except that
  107.      the shareware distribution may be freely distributed as a complete
  108.      unmodified package.  The complete unmodified package must include the
  109.      files described in the README.TXT file which is part of the complete
  110.      unmodified package.  The files listed there may only be distributed as
  111.      produced by the author (Ralph W. reid).
  112.  
  113.  
  114.      MASSCALC     VERSION 1.01                                            2
  115.  
  116.  
  117.  
  118.      HISTORY:
  119.  
  120.      VERSION 1.01
  121.      Fixed a software problem which crashed some systems in some situations.
  122.      The operating manual for this version is the same as for version 1.00.
  123.  
  124.      VERSION 1.00
  125.      Original public release of MASSCALC.
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.      MASSCALC     VERSION 1.01                                            3
  172.